home *** CD-ROM | disk | FTP | other *** search
- function _GetString(name)
- {
- if (!gStringBundle)
- {
- try {
- var strBundleService =
- Components.classes["@mozilla.org/intl/stringbundle;1"].getService();
- strBundleService =
- strBundleService.QueryInterface(Components.interfaces.nsIStringBundleService);
-
- gStringBundle = strBundleService.createBundle("chrome://editor/locale/sitemanager.properties");
-
- } catch (ex) {}
- }
- if (gStringBundle)
- {
- try {
- return gStringBundle.GetStringFromName(name);
- } catch (e) {}
- }
- return null;
- }
-
- function IsFileUrl(url)
- {
- return (url.substr(0,4) == "file");
- }
-
- function AllowEvents(tree, enabled)
- {
- if (enabled)
- tree.removeAttribute("allowevents");
- else
- tree.setAttribute("allowevents", false);
- }
-
- function DEBUG(foo)
- {
- if (debug)
- dump( "SITEMANAGER: " + foo + "\n" );
- }
-
- function _GetUrlForPasswordManager(publishData)
- {
- if (!publishData || !publishData.publishUrl)
- return false;
-
- var url;
-
- // For FTP, we must embed the username into the url for a site address
- // XXX Maybe we should we do this for HTTP as well???
- if (publishData.username && GetScheme(publishData.publishUrl) == "ftp")
- url = _InsertUsernameIntoUrl(publishData.publishUrl, publishData.username,
- window.top.GetSavedPassword(publishData));
- else
- url = publishData.publishUrl;
-
- // Strip off terminal "/"
- var len = url.length;
- if (len && url.charAt(len-1) == "\/")
- url = url.slice(0, len-1);
-
- return url;
- }
-
- function _InsertUsernameIntoUrl(urlspec, username, passwd)
- {
- if (!urlspec || !username)
- return urlspec;
-
- try {
- var ioService = GetIOService();
- var URI = ioService.newURI(urlspec, GetCurrentEditorFromSidebar().documentCharacterSet, null);
- URI.username = username;
- URI.password = passwd;
- return URI.spec;
- } catch (e) {}
-
- return urlspec;
- }
-
- function _removeAllChildren(e)
- {
- if (e)
- {
- var child = e.lastChild;
- while (child)
- {
- var tmp = child.previousSibling;
- e.removeChild(child);
- child = tmp;
- }
- }
- }
-
- function DirContainsFiles(url)
- {
- var localFile = GetLocalFileFromURLSpec(url);
- return (localFile.directoryEntries.hasMoreElements());
- }
-